import { Button } from "@vercel/geistdocs/components/button"; import DynamicLink from "fumadocs-core/dynamic-link"; interface CTAProps { cta: string; href: string; title: string; } export const CTA = ({ title, href, cta }: CTAProps) => (

{title}

);